home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 44 / Amiga Format CD44 (1999-08-26)(Future Publishing)(GB)(Track 1 of 3)[!][issue 1999-10].iso / -serious- / wb / merlin / games.mcp < prev    next >
Text File  |  1999-07-12  |  2KB  |  108 lines

  1. ;;
  2. ;;    There are xx commands.
  3. ;;
  4. ;;    HGROUP
  5. ;;    VGROUP
  6. ;;    ENDGROUP
  7. ;;    TEXT         "some text"
  8. ;;    BUTTON       "some text"    "command to be executed"
  9. ;;    QUITBUTTON
  10. ;;
  11. ;;    --    NEXTROW, NEXTBOX
  12. ;;
  13. ;;    Text       <- makes a box with text
  14. ;;    Button     <- makes a button
  15. ;;    NextRow    <- sort of a return for a new line of buttons
  16. ;;    QuitButton <- makes a quit button (optional)
  17. ;;    NextBox    <- start a complete new box with buttons (optional)
  18. ;;
  19.  
  20.  
  21.  
  22. ; Define labels for pens (optional)
  23.  
  24. PEN  #0  Grey
  25. PEN  #1  Black
  26. PEN  #2  White
  27. PEN  #3  Blue
  28.  
  29. PEN  #4  DGrey
  30. PEN  #5  LGrey
  31. PEN  #6  Beige
  32. PEN  #7  LBlue
  33.  
  34. PEN  #8  Yellow
  35. PEN  #9  Red
  36. PEN  #10 LGreen
  37. PEN  #11 DGreen
  38.  
  39. PEN  #12 Orange
  40. PEN  #13 Cyan
  41. PEN  #14 Brown
  42. PEN  #15 Beige
  43.  
  44.  
  45.  
  46.  
  47. ; SpaceAroundWindow X Y , SpaceAroundGroup X Y 
  48. ; SpaceAroundObject X Y , LineThickness    X Y
  49.  
  50. SAW  2  1        ; 0 0
  51. SAG  3  2        ; 5 3   3 2
  52. SAO  2  1        ; 2 1
  53. LTX  2  1        ; 2 1
  54.  
  55.  
  56. ; FONT   "Fontname.font"  FontSize  Label
  57.  
  58. FONT  "Topaz.font"       8    ButtonFont
  59.  
  60.  
  61. ; IFF    "path/picture.iff"   Label
  62.  
  63.  
  64. ; default size of strings and buttons in characters
  65.  
  66. DEFAULTSIZE   10
  67. WINDOWCOLOR   grey
  68. WINDOWTITLE   "Games"
  69.  
  70. SAVEWINDOWPOS
  71. ; WINDOWPOS  20  20
  72.  
  73.  
  74.  
  75. VGROUP
  76.  
  77. ; TEXT "Tools and Utilities"
  78. ; LINE HORIZONTAL
  79.  
  80.  HGROUP
  81.  
  82.   VGROUP BORDER
  83.    BUTTON  " "     RUN " "         BCOLOR blue
  84.    BUTTON  " "     RUN " "         BCOLOR blue
  85.    BUTTON  " "     RUN " "         BCOLOR blue
  86.    BUTTON  " "     RUN " "         BCOLOR blue
  87.   ENDGROUP
  88.  
  89.   VGROUP BORDER
  90.    BUTTON  " "     RUN " "         BCOLOR blue
  91.    BUTTON  " "     RUN " "         BCOLOR blue
  92.    BUTTON  " "     RUN " "         BCOLOR blue
  93.    BUTTON  " "     RUN " "         BCOLOR blue
  94.   ENDGROUP
  95.  
  96.   VGROUP BORDER
  97.    BUTTON  " "     RUN " "         BCOLOR blue
  98.    BUTTON  " "     RUN " "         BCOLOR blue
  99.    BUTTON  " "     RUN " "         BCOLOR blue
  100.    BUTTON  " "     RUN " "         BCOLOR blue
  101.   ENDGROUP
  102.  
  103.  
  104.  ENDGROUP
  105.  
  106. ENDGROUP
  107.  
  108.